The + operation can be
performed on a string variable in order to join to strings together.
string output
output=output + "Hello"
This will appened "Hello"
to the end of output.
They can also be tested
for equality e.g.
string
output
if output="Hello"
....
end
if
The body of the if statement
will only be executed if the value of output
equals "Hello".